home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 16 / 016.d81 / comp tips-2 < prev    next >
Text File  |  2022-08-26  |  3KB  |  194 lines

  1.         MORE COMPUTER TIPS
  2.  
  3.  
  4. From Howald 91406
  5.  
  6.  
  7.   I found out why I was having so much
  8.  
  9. trouble with FASTLOAD. I bought a
  10.  
  11. FASTLOAD cartridge when I bought my
  12.  
  13. 1541 last December. I had an early
  14.  
  15. version of it. I just bought another
  16.  
  17. and !WOW! is it different!!  This one
  18.  
  19. has a bigger menu and it does every-
  20.  
  21. thing I want to do.
  22.  
  23.  
  24. --------------------------------------
  25.  
  26. From Jenkins 76903
  27.  
  28.  
  29.   I have a comment that I hope you
  30.  
  31. will pass on to Larson 98371. In
  32.  
  33. Issue 14's Influx, I noticed she was
  34.  
  35. having trouble with copying her
  36.  
  37. LOADSTAR disks. She might be using the
  38.  
  39. wrong name for her copied disks. I
  40.  
  41. found out, from copying my own disks,
  42.  
  43. that the name of the disk has to be:
  44.  
  45. 'LOADSTAR #XX S-X' where XX and X are
  46.  
  47. the issue number and the side number
  48.  
  49. of the disk. That may be part of her
  50.  
  51. problem.
  52.  
  53. - - - - - -  - - - - - - - - - - - - -
  54.  
  55.  I would like to recommend the
  56.  
  57. Seikosha GP-550 CD printer. It's
  58.  
  59. marketed by Apropros Technology and
  60.  
  61. is a fine piece of equipment. It
  62.  
  63. offers a variety of features such as:
  64.  
  65. several fonts, variable space
  66.  
  67. printing, tractor or friction feed,
  68.  
  69. and more. I also have it from
  70.  
  71. Batteries Included that PaperClip
  72.  
  73. fully supports this printer.
  74.  
  75.  
  76. --------------------------------------
  77.  
  78. From Kober 75831
  79.  
  80. Information for Shaffer 50312
  81.  
  82.   There is no valid WEDGE command
  83.  
  84. @UI. The command most likely intended
  85.  
  86. was @UJ, which does in fact, reset the
  87.  
  88. disk drive. This can also be written
  89.  
  90. as @U:. These are two of the USER
  91.  
  92. commands explained in the 1541 USER'S
  93.  
  94. MANUAL.
  95.  
  96.   The @* command in DOSPLUS is the
  97.  
  98. same as the WEDGE's @UJ or @U:, except
  99.  
  100. that a short time delay has been
  101.  
  102. included in the @* routine to allow
  103.  
  104. reading in a portion of the drive's
  105.  
  106. DOS version message.
  107.  
  108.   This message is in the ROM of the
  109.  
  110. drive, and can be read as follows:
  111.  
  112.     1. LOAD and RUN DOSPLUS or the
  113.        C-64 WEDGE.
  114.     2. Turn the disk drive off, and
  115.        then back on.
  116.     3. Enter @ and RETURN.
  117.  
  118.   This message is read by the drive
  119.  
  120. anytime the drive is reset, as error
  121.  
  122. number 73 DOS MISMATCH. Since the
  123.  
  124. drive is reset when it is first turned
  125.  
  126. on, and entering @ will read the disk
  127.  
  128. error message, this will then read the
  129.  
  130. DOS version message.
  131.  
  132.   This error will also be encountered
  133.  
  134. when trying to write to a disk that
  135.  
  136. has been software write protected with
  137.  
  138. the 'WRITE GUARD' program found on
  139.  
  140. LOADSTAR #14.
  141.  
  142.   Here is a short BASIC program that
  143.  
  144. is identical to the ML routine found
  145.  
  146. in DOSPLUS that is executed when @* is
  147.  
  148. entered.
  149.  
  150.    10 OPEN 1,8,15
  151.    20 PRINT#1,''UJ''
  152.    30 FOR I=1 TO 1000:NEXT
  153.    40 GET#1,A$:IF A$<>CHR$(67) THEN 40
  154.    50 PRINT A$;
  155.    60 GET#1,A$:IF A$<>CHR$(44) THEN 50
  156.    70 CLOSE 1:END
  157.  
  158.  
  159.   To explain what was meant in the
  160.  
  161. program DOSPLUS concerning the ability
  162.  
  163. to UN-NEW a BASIC program even after
  164.  
  165. entering SYS 64738, the following is
  166.  
  167. offered.
  168.  
  169.   To UN-NEW a BASIC program (after
  170.  
  171. entering SYS 64738), follow this
  172.  
  173. sequence (with DOSPLUS loaded):
  174.  
  175.      1. Enter SYS 52224 (This resets
  176.         DOSPLUS).
  177.      2. Enter @#8 (This resets the
  178.         default device to 8).
  179.      3. Enter @U (This UN-NEWs the
  180.         BASIC program).
  181.  
  182.   Should any further information be
  183.  
  184. wanted, I may be contacted directly
  185.  
  186. by mail at:
  187.  
  188.           R.W. Bob Kober
  189.           P.O. Box 181
  190.           Buffalo, Texas  75831
  191.  
  192. ---------< end of article >-----------
  193.  
  194.